-
-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix tests after Beaker::Platform refactoring #146
Conversation
0145c02
to
c45ca9e
Compare
c45ca9e
to
7478426
Compare
Since this is a fix for voxpupuli/beaker@9d85e89, which was first released in 6.4.0, should we bump the minimal version in the gemspec to 6.4.0? |
No.
|
I also don't think this should be labeled |
|
||
expect(dockerfile).to match(/pacman --sync --refresh --noconfirm archlinux-keyring/) | ||
expect(dockerfile).to match(/pacman --sync --refresh --noconfirm --sysupgrade/) | ||
expect(dockerfile).to match(/pacman --sync --noconfirm curl ntp net-tools openssh/) | ||
expect(dockerfile).to match(/pacman --sync --noconfirm curl net-tools openssh/) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we could make this
expect(dockerfile).to match(/pacman --sync --noconfirm curl net-tools openssh/) | |
expect(dockerfile).to match(/pacman --sync --noconfirm curl/) |
and then it'd pass on 6.3 AND 6.4
No description provided.